From: Richard M. Stallman Date: Sun, 16 May 1993 15:28:52 +0000 (+0000) Subject: (mark-sexp, mark-defun): Activate the mark. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96237 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=0ba911156b93dbb1db9aaf5c58de7bbf0816165b;p=emacs.git (mark-sexp, mark-defun): Activate the mark. --- diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 9cd00517cc2..9c4cbd1d788 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -55,7 +55,8 @@ move to with the same argument." (push-mark (save-excursion (forward-sexp arg) - (point)))) + (point)) + nil t)) (defun forward-list (&optional arg) "Move forward across one balanced group of parentheses. @@ -188,7 +189,7 @@ The defun marked is the one that contains point or follows point." (interactive) (push-mark (point)) (end-of-defun) - (push-mark (point)) + (push-mark (point) nil t) (beginning-of-defun) (re-search-backward "^\n" (- (point) 1) t))